home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World Tours: Brazil
/
WorldTours: Brazil.iso
/
pc
/
content
/
main.dir
/
00053_Script_roll up
< prev
next >
Wrap
Text File
|
2007-04-22
|
492b
|
26 lines
global chapterCount,firstChapter
on beginsprite
check()
end
on mousedown
firstChapter=firstChapter-1
if firstChapter<1 then firstChapter=1
reflashChapterList()
check()
end
on check
if firstChapter=1 then
sprite(the currentspriteNum).locH=-320
else
sprite(the currentspriteNum).locH=320
end if
if firstChapter=chapterCount-8 then
sprite(the currentspriteNum+1).locH=-320
else
sprite(the currentspriteNum+1).locH=320
end if
end